home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000140_fdc@watsun.cc.columbia.edu_Fri Nov 9 10:45:02 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  48 lines

  1. Article: 12959 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit Connection Script
  6. Date: 9 Nov 2001 15:45:34 GMT
  7. Organization: Columbia University
  8. Lines: 31
  9. Message-ID: <9sgtmu$cnk$1@newsmaster.cc.columbia.edu>
  10. References: <336f652d.0111060809.1f3e3640@posting.google.com> <9s947c$1kc$1@newsmaster.cc.columbia.edu> <336f652d.0111090733.6bcdb528@posting.google.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1005320734 13044 128.59.39.2 (9 Nov 2001 15:45:34 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 9 Nov 2001 15:45:34 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12959
  16.  
  17. In article <336f652d.0111090733.6bcdb528@posting.google.com>,
  18. Shifeux <shifeux@hotmail.com> wrote:
  19. : I do get the point. I found that out right after I posted the message.
  20. : Thanks for the help. I have aquestion about starting and stopping the
  21. : kermit server itself. I execute the following command
  22. : wermit server_script.ksc 1> /dev/null &
  23. : to start the kermit in server mode. Now how can I end the kermit
  24. : server mode with out actually killing off the processes.
  25. :
  26. The client can do this by giving a FINISH command.  If no clients are
  27. currently connected, you could do this yourself.
  28.  
  29. : The only way I have been able to stop the server is finding the PID and
  30. : kill -9 the PID. But that bothers me. I would like to be able to set the
  31. : server to run via the cron and then turn it off via another cron entry? Is
  32. : this possible?
  33. :
  34. Presently there is no special signal you can send to it other than KILL or
  35. HUP.  If you use "kill -HUP", at least then Kermit can catch this signal and
  36. clean up before terminating.
  37.  
  38. Is your application for Internet connections?  Maybe instead of a Kermit
  39. server under cron, you should be looking at an Internet Kermit Service under
  40. inetd:
  41.  
  42.   http://www.columbia.edu/kermit/cuiksd.html  <-- user doc
  43.   http://www.columbia.edu/kermit/iksd.html    <-- administrator doc
  44.  
  45. - Frank
  46.